Introduction: It's a paper to reorganize the knowledge of List Rendering in Vue official guide. So a lot of content is from the Vue Official guide. Th ...
分类:
其他好文 时间:
2021-02-16 12:03:49
阅读次数:
0
使用安装包直接安装 # 10/22/2020 安装过程如下: 1)官网下载 deb 安装包:https://www.opera.com/download 2)在 Debian 中,执行 dpkg -i opera-xxxx.deb 命令进行安装。 使用包管理器安装 cat > /etc/apt/so ...
分类:
系统相关 时间:
2021-02-16 11:40:45
阅读次数:
0
有时候我们需要查找可执行程序的依赖的动态库,我们可以使用 readelf ,比如这样》 [root@RV1126_RV1109:/py-spidev]# readelf -d /bin/ls | grep "Shared library" 0x00000001 (NEEDED) Shared lib ...
分类:
其他好文 时间:
2021-02-10 13:14:04
阅读次数:
0
refer to: https://stackoverflow.com/questions/24387451/how-can-i-kill-whatever-process-is-using-port-8080-so-that-i-can-vagrant-up/24388281 怎么解决端口被占用的 ...
分类:
其他好文 时间:
2021-02-09 11:56:30
阅读次数:
0
ionic cordova build ios 时报错: No profiles for '***' were found: Xcode couldn't find any iOS App Development provisioning profiles matching '***'. Autom ...
分类:
移动开发 时间:
2021-02-03 10:30:48
阅读次数:
0
具体报错信息: 1 Whitelabel Error Page 2 This application has no explicit mapping for /error, so you are seeing this as a fallback. 3 4 Mon Feb 01 21:33:07 C ...
分类:
移动开发 时间:
2021-02-02 11:27:59
阅读次数:
0
? A common typing error is to place the hands on the keyboard one row to the right of the correct position. So ‘Q’ is typed as ‘W’ and ‘J’ is typed as ...
分类:
其他好文 时间:
2021-02-01 12:19:45
阅读次数:
0
在bionic/linker/linker.cpp中有一个系统库函数的豁免列表,但是只有target sdk version小于24才能被豁免。 static bool is_exempt_lib(android_namespace_t* ns, const char* name, const so ...
分类:
移动开发 时间:
2021-01-30 12:18:43
阅读次数:
0
杂谈:其实原理并没有很难,本质就是hook Android的框架层中的api将我们想要的key和iv(也可以没有,就打个比方),但是目前的话,很多厂家已经不在直接调用java层的这些加密算法的api了, 很多都是使用自己实现的加密算法,要么就是放在so里面,要么就是java层自己实现一个差不多算法的 ...
分类:
移动开发 时间:
2021-01-30 12:06:25
阅读次数:
0
# linux 下 取进程占用 cpu 最高的前10个进程ps aux|head -1;ps aux|grep -v PID|sort -rn -k +3|head # linux 下 取进程占用内存(MEM)最高的前10个进程ps aux|head -1;ps aux|grep -v PID|so ...
分类:
系统相关 时间:
2021-01-30 11:52:19
阅读次数:
0